:root {
  --text-color: #000;
  --secondary-color: #5151ef;
  --main-color: white;
  --light-bg-color: rgb(246, 246, 246);
  --dark-bg-color: #0f0f28;
  --sub-text-color: #808080;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: var(--light-bg-color);
  color: var(--text-color);
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

/* Hero Section */
.hero {
  background: var(--dark-bg-color);
  color: var(--main-color);
  text-align: center;
  padding: 80px 20px;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 18px;
  color: var(--sub-text-color);
}

/* Intro */
.intro .text-block {
  background: var(--main-color);
  color: #0f0f28;
  padding: 40px;
  border-left: 5px solid var(--secondary-color);
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  border-radius: 12px;
  line-height: 25px;

  h2{
    padding-bottom: 10px;
  }
}

/* Split Layout */
.split {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.split .text {
  flex: 1;
  color:#0f0f28;
  line-height: 25px;
  h3{
    padding-bottom: 10px;
  }
}

.split .video {
  flex: 1;
}

video {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

/* Services List */
.split ul {
  margin-top: 15px;
  padding-left: 20px;
}

.split li {
  font-size: 16px;
  margin-bottom: 8px;
  color: #0f0f28;
}

/* Stats */
.stats {
  background: var(--dark-bg-color);
  color: var(--main-color);
  text-align: center;
  padding: 60px 20px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
}

.stats-grid h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

/* Timeline */
.timeline h2 {
  text-align: center;
  margin-bottom: 40px;
}

.timeline .entry {
  margin-bottom: 30px;
  border-left: 4px solid var(--secondary-color);
  padding-left: 20px;
  color: #0f0f28;
}

.timeline .entry h3 {
  margin-bottom: 10px;
  color: var(--secondary-color);
}

/* Vision Mission */
.vm {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
}

.vm-box {
  flex: 1 1 45%;
  background: var(--main-color);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  border-left: 5px solid var(--secondary-color);
  h3{
    color: var(--secondary-color);
    padding-bottom: 10px;
  }
  p{
    color: #0f0f28;
  }
}

/* Contact */
.contact {
  text-align: center;
  padding-top: 60px;
  display: none;
}

.contact a {
  color: var(--secondary-color);
  text-decoration: none;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .split, .vm {
    flex-direction: column;
  }
}
